home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Dev / Oberon / source / amiga / Keyboard.mod < prev    next >
Text File  |  1995-06-29  |  1KB  |  49 lines

  1. (**************************************************************************
  2.  
  3.      $RCSfile: Keyboard.mod $
  4.   Description: Interface to keyboard.device
  5.  
  6.    Created by: fjc (Frank Copeland)
  7.     $Revision: 3.8 $
  8.       $Author: fjc $
  9.         $Date: 1995/06/04 23:13:14 $
  10.  
  11.   $VER: keyboard.h 36.0 (1.5.90)
  12.   Includes Release 40.15
  13.  
  14.   (C) Copyright 1985-1993 Commodore-Amiga, Inc.
  15.       All Rights Reserved
  16.  
  17.   Oberon-A interface Copyright © 1994-1995, Frank Copeland.
  18.   This file is part of the Oberon-A Interface.
  19.   See Oberon-A.doc for conditions of use and distribution.
  20.  
  21. ***************************************************************************)
  22.  
  23. <* STANDARD- *>
  24.  
  25. MODULE [2] Keyboard;
  26.  
  27. IMPORT e := Exec;
  28.  
  29.  
  30. (*
  31. **
  32. **      Keyboard device command definitions
  33. *)
  34.  
  35. CONST
  36.  
  37.   readEvent        * = e.nonstd+0;
  38.   readMatrix       * = e.nonstd+1;
  39.   addResetHandler  * = e.nonstd+2;
  40.   remResetHandler  * = e.nonstd+3;
  41.   resetHandlerDone * = e.nonstd+4;
  42.  
  43.  
  44. CONST
  45.  
  46.   keyboardName * = "keyboard.device";
  47.  
  48. END Keyboard.
  49.